google.golang.org/grpc/health.Server.updates (field)

7 uses

	google.golang.org/grpc/health (current package)
		server.go#L49: 	updates   map[string]map[healthgrpc.Health_WatchServer]chan healthpb.HealthCheckResponse_ServingStatus
		server.go#L56: 		updates:   make(map[string]map[healthgrpc.Health_WatchServer]chan healthpb.HealthCheckResponse_ServingStatus),
		server.go#L103: 	if _, ok := s.updates[service]; !ok {
		server.go#L104: 		s.updates[service] = make(map[healthgrpc.Health_WatchServer]chan healthpb.HealthCheckResponse_ServingStatus)
		server.go#L106: 	s.updates[service][stream] = update
		server.go#L109: 		delete(s.updates[service], stream)
		server.go#L149: 	for _, update := range s.updates[service] {